projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b5e9bed
)
* src/indent.c (Fvertical_motion): Fix int/Lisp_Object mix up.
author
Glenn Morris
<rgm@gnu.org>
Thu, 16 Apr 2020 16:05:52 +0000
(09:05 -0700)
committer
Glenn Morris
<rgm@gnu.org>
Thu, 16 Apr 2020 16:05:52 +0000
(09:05 -0700)
src/indent.c
patch
|
blob
|
history
diff --git
a/src/indent.c
b/src/indent.c
index 2d07791606d3c7e2111fe460756aea3f5042dd0b..dd81b983d48650917e5b8d08ed4aa7a2928c21f0 100644
(file)
--- a/
src/indent.c
+++ b/
src/indent.c
@@
-2103,7
+2103,7
@@
whether or not it is currently displayed in some window. */)
lines = XCDR (lines);
}
else
- lcols =
0;
/* shut up stupid GCC warning */
+ lcols =
make_fixnum (0);
/* shut up stupid GCC warning */
CHECK_FIXNUM (lines);
w = decode_live_window (window);